home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / gfx / misc / gnuplot-3.7src.lha / gnuplot-3.7src / gnuplot-3.7.lha / gnuplot-3.7 / help.h < prev    next >
C/C++ Source or Header  |  1998-04-15  |  2KB  |  48 lines

  1. /*
  2.  * $Id: help.h,v 1.9 1998/03/22 22:31:45 drd Exp $
  3.  *
  4.  */
  5.  
  6. /* GNUPLOT - help.h */
  7.  
  8. /*[
  9.  * Copyright 1986 - 1993, 1998   Thomas Williams, Colin Kelley
  10.  *
  11.  * Permission to use, copy, and distribute this software and its
  12.  * documentation for any purpose with or without fee is hereby granted,
  13.  * provided that the above copyright notice appear in all copies and
  14.  * that both that copyright notice and this permission notice appear
  15.  * in supporting documentation.
  16.  *
  17.  * Permission to modify the software is granted, but not the right to
  18.  * distribute the complete modified source code.  Modifications are to
  19.  * be distributed as patches to the released version.  Permission to
  20.  * distribute binaries produced by compiling modified sources is granted,
  21.  * provided you
  22.  *   1. distribute the corresponding source modifications from the
  23.  *    released version in the form of a patch file along with the binaries,
  24.  *   2. add special version identification to distinguish your version
  25.  *    in addition to the base release version number,
  26.  *   3. provide your name and address as the primary contact for the
  27.  *    support of your modified version, and
  28.  *   4. retain our contact information in regard to use of the base
  29.  *    software.
  30.  * Permission to distribute the released version of the source code along
  31.  * with corresponding source modifications in the form of a patch file is
  32.  * granted with same provisions 2 through 4 for binary distributions.
  33.  *
  34.  * This software is provided "as is" without express or implied warranty
  35.  * to the extent permitted by applicable law.
  36. ]*/
  37.  
  38.  
  39. #include "ansichek.h"
  40.  
  41. /* Exit status returned by help() */
  42. #define    H_FOUND        0    /* found the keyword */
  43. #define    H_NOTFOUND    1    /* didn't find the keyword */
  44. #define    H_ERROR        (-1)    /* didn't find the help file */
  45.  
  46. int help __PROTO((char *keyword, char *path, int *subtopics));
  47. void FreeHelp __PROTO((void));    /* use this if you need memory */
  48.